* {
            box-sizing: border-box;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            margin: 0;
            padding: 0;
        }
        body {
            background: linear-gradient(135deg, #dde9f0 0%, #c2dae8 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .card {
            max-width: 1100px;
            width: 100%;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(12px);
            border-radius: 56px;
            padding: 32px 36px;
            box-shadow: 0 30px 50px -25px #113750;
            border: 1px solid rgba(255,255,255,0.7);
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 600;
            -webkit-background-clip: text;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .sub {
            background: #dbeaf6d0;
            border-left: 8px solid #3487b9;
            padding: 12px 24px;
            border-radius: 60px;
            margin: 12px 0 30px;
            font-size: 1rem;
            color: #013753;
        }
        .property-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            background: #ecf6fed0;
            border-radius: 80px;
            padding: 20px 28px;
            margin-bottom: 30px;
            border: 1px solid white;
        }
        .prop-item {
            flex: 1 1 200px;
        }
        .prop-item label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #1b6082;
            letter-spacing: 0.5px;
        }
        .prop-item input, .prop-item select {
            width: 100%;
            padding: 12px 18px;
            background: white;
            border: 2px solid #c3def5;
            border-radius: 40px;
            font-size: 0.95rem;
            outline: none;
            margin-top: 5px;
        }
        .prop-item input:focus {
            border-color: #2680c0;
            box-shadow: 0 0 0 3px #b4dcfd;
        }
        .url-input-row {
            display: flex;
            gap: 14px;
            align-items: center;
            flex-wrap: wrap;
        }
        .url-input-row input {
            flex: 3 1 300px;
        }
        .btn {
            background: white;
            border: none;
            border-radius: 60px;
            padding: 14px 28px;
            font-weight: 600;
            font-size: 1rem;
            box-shadow: 0 6px 16px -8px #12435f;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: 0.2s;
            border: 1px solid white;
            color: #013e5c;
        }
        .btn-primary {
            background: #1b6b9c;
            color: white;
            box-shadow: 0 8px 18px -6px #0b405a;
        }
        .btn-primary:hover {
            background: #2382bd;
            transform: scale(1.02);
        }
        .btn-download {
            background: #1d7a5c;
            color: white;
            box-shadow: 0 8px 18px -6px #0e533d;
        }
        .btn-download:hover {
            background: #259b77;
        }
        .analysis-panels {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin: 30px 0 20px;
        }
        @media (max-width:700px) {
            .analysis-panels { grid-template-columns: 1fr; }
        }
        .panel {
            background: #ffffffde;
            border-radius: 36px;
            padding: 22px;
            border: 1px solid white;
        }
        .panel h3 {
            color: #1d6388;
            font-weight: 600;
            margin-bottom: 16px;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .url-props {
            background: #eaf3fc;
            border-radius: 24px;
            padding: 16px;
            font-size: 0.9rem;
        }
        .url-props div {
            padding: 6px 0;
            border-bottom: 1px dashed #b9d5f0;
        }
        .url-props div:last-child { border: none; }
        .risk-flags {
            list-style: none;
            max-height: 250px;
            overflow-y: auto;
            padding-right: 6px;
        }
        .risk-flags li {
            background: #f0f8ff;
            margin: 8px 0;
            padding: 12px 18px;
            border-radius: 30px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
            border-left: 6px solid #ffb347;
        }
        .risk-flags .safe-flag {
            border-left-color: #2e9a6e;
            background: #e0f5ea;
        }
        .risk-flags .high-risk {
            border-left-color: #d14545;
            background: #ffe6e6;
        }
        .score-badge {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1.1rem;
        }
        .status-bar {
            background: #cbe6fd;
            border-radius: 60px;
            padding: 14px 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            font-weight: 500;
            color: #003153;
            margin: 20px 0 0;
        }
        .timer-badge {
            background: #1a6a91;
            color: white;
            border-radius: 40px;
            padding: 5px 22px;
        }
        .footer {
            margin-top: 22px;
            font-size: 0.8rem;
            color: #1f5775;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            border-top: 1px dashed #aac9e5;
            padding-top: 18px;
        }